home *** CD-ROM | disk | FTP | other *** search
/ Day Cry / Day Cry CD.bin / oh_towns / taropyon / silib / silib.lzh / INC / SITSL.H < prev    next >
C/C++ Source or Header  |  1993-09-05  |  788b  |  39 lines

  1. #ifndef    _SITSL_H
  2. #define    _SITSL_H
  3.  
  4. #ifndef    _SITSK_H
  5. #    include    <sitsk.h>
  6. #endif
  7.  
  8. typedef struct _tsklst_t    /* â^âXâNêΩùùì\æóæ╠    */
  9. {
  10.     struct _tsklst_t    *next;
  11.  
  12.     unsigned int    att;
  13.     unsigned int    stt;
  14.     char            tskName[128];        /* â^âXâNû╝    */
  15.     int                (*entryFunc)(TSK_T *,int,...);
  16.                                         /* âGâôâgâèè╓Éö    */
  17.  
  18. } TSLST_T;
  19.  
  20. typedef struct
  21. {
  22.     int            lstNum;
  23.     TSLST_T        *lstTop;
  24. } TSL_T;
  25.  
  26. extern    TSL_T    *SiTsl;
  27.  
  28. /*    "tsl010.c"        ----------------------------------------------------*/
  29. extern    int        TSL_init(void);
  30. extern    void    TSL_term(void);
  31.  
  32. /*    "tsl011.c"        ----------------------------------------------------*/
  33. extern    int        TSL_link( TSLST_T *lst );
  34.  
  35. /*    "tsl012.c"        ----------------------------------------------------*/
  36. extern    int        TSL_unlink( TSLST_T *lst );
  37.  
  38. #endif
  39.